home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-07-08 | 684 b | 28 lines | [TEXT/ALFA] |
- #=============================================================================
- # Browser mode.
- #=============================================================================
- proc dummyBrws {} {}
-
- proc upBrowse {} {
- set limit [nextLineStart [nextLineStart 0]]
- if {[getPos] > $limit} {
- set limit [expr [getPos] - 1]
- }
- select [lineStart $limit] [nextLineStart $limit]
- }
-
- proc downBrowse {} {
- if {[nextLineStart [getPos]] != [maxPos]} {
- select [nextLineStart [getPos]] [nextLineStart [nextLineStart [getPos]]]
- }
- }
-
- bind '\r' gotoMatch Brws
- bind enter gotoMatch Brws
- bind down downBrowse Brws
- bind up upBrowse Brws
- bind 'n' <z> downBrowse Brws
- bind 'p' <z> upBrowse Brws
-
-
-